home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / collections / IViewCursor.as < prev    next >
Text File  |  2009-02-12  |  1KB  |  40 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface IViewCursor extends IEventDispatcher
  6.    {
  7.        
  8.       
  9.       [Bindable("cursorUpdate")]
  10.       function get current() : Object;
  11.       
  12.       function moveNext() : Boolean;
  13.       
  14.       function get view() : ICollectionView;
  15.       
  16.       function movePrevious() : Boolean;
  17.       
  18.       function remove() : Object;
  19.       
  20.       function findLast(param1:Object) : Boolean;
  21.       
  22.       [Bindable("cursorUpdate")]
  23.       function get beforeFirst() : Boolean;
  24.       
  25.       [Bindable("cursorUpdate")]
  26.       function get afterLast() : Boolean;
  27.       
  28.       function findAny(param1:Object) : Boolean;
  29.       
  30.       [Bindable("cursorUpdate")]
  31.       function get bookmark() : CursorBookmark;
  32.       
  33.       function findFirst(param1:Object) : Boolean;
  34.       
  35.       function seek(param1:CursorBookmark, param2:int = 0, param3:int = 0) : void;
  36.       
  37.       function insert(param1:Object) : void;
  38.    }
  39. }
  40.